home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Windows marzen / HyperSnap 6.21 / HS6SetPL.exe / [0] / HprSnap6Man.chm / scripts / dtuelink.js < prev    next >
Text File  |  2007-08-17  |  2KB  |  51 lines

  1. //
  2. // dtuelink.js
  3. // Copyright (C) 2003-2004 MGTEK. All rights reserved.
  4. //
  5.  
  6. var ieVersion = GetIEVersion();
  7. var jsPath = GetScriptPath();
  8.  
  9. main();
  10.  
  11. /////////////////////////////////////////////////////////////////////////////
  12.  
  13. // Determines the IE version. Returns 0 if not IE.
  14. function GetIEVersion()
  15. {
  16.     if (navigator.appName == "Microsoft Internet Explorer")
  17.     {
  18.         var version = window.navigator.userAgent;
  19.         var msie = version.indexOf("MSIE ");
  20.         if (msie > 0)
  21.             return parseFloat(version.substring(msie + 5, version.indexOf(";", msie)));
  22.     }
  23.     return 0;
  24. }
  25.  
  26. // Determine path to script folder.
  27. function GetScriptPath()
  28. {
  29.     var path = document.scripts[document.scripts.length - 1].src;
  30.     return path.toLowerCase().replace("dtuelink.js", "");
  31. }
  32.  
  33. function main()
  34. {
  35.     // Write the CSS and JScript links.
  36.     if (ieVersion >= 5)
  37.     {
  38.         document.writeln('<LINK rel="stylesheet" href="ms-help://Hx/HxRuntime/HxLink.css">');
  39.         document.writeln('<LINK rel="stylesheet" href="' + jsPath + "msdn.css" + '">');
  40.         document.writeln('<SCRIPT src="' + jsPath + '\msdn_ie5.js"></SCRIPT>');
  41.         document.writeln('<SCRIPT for="reftip" event="onclick">window.event.cancelBubble = true;</SCRIPT>');
  42.         document.writeln('<SCRIPT for="cmd_lang" event="onclick">langClick(this);</SCRIPT>');
  43.         document.writeln('<SCRIPT for="cmd_filter" event=onclick>filterClick(this);</SCRIPT>');
  44.     }
  45.     else
  46.     {
  47.         document.writeln('<LINK rel="stylesheet" href="' + jsPath + "msdn.css" + '">');
  48.         document.writeln('<SCRIPT src="' + jsPath + '\msdn_ie4.js"></SCRIPT>');
  49.     }
  50. }
  51.